home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / netinet / udp_var.h < prev    next >
C/C++ Source or Header  |  1988-06-29  |  1KB  |  51 lines

  1. /*
  2.  * Copyright (c) 1982, 1986 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that this notice is preserved and that due credit is given
  7.  * to the University of California at Berkeley. The name of the University
  8.  * may not be used to endorse or promote products derived from this
  9.  * software without specific prior written permission. This software
  10.  * is provided ``as is'' without express or implied warranty.
  11.  *
  12.  *    @(#)udp_var.h    7.3 (Berkeley) 12/7/87
  13.  */
  14.  
  15. #ifndef _UDP_VAR
  16. #define _UDP_VAR
  17.  
  18. /*
  19.  * UDP kernel structures and variables.
  20.  */
  21. struct    udpiphdr {
  22.     struct     ipovly ui_i;        /* overlaid ip structure */
  23.     struct    udphdr ui_u;        /* udp header */
  24. };
  25. #define    ui_next        ui_i.ih_next
  26. #define    ui_prev        ui_i.ih_prev
  27. #define    ui_x1        ui_i.ih_x1
  28. #define    ui_pr        ui_i.ih_pr
  29. #define    ui_len        ui_i.ih_len
  30. #define    ui_src        ui_i.ih_src
  31. #define    ui_dst        ui_i.ih_dst
  32. #define    ui_sport    ui_u.uh_sport
  33. #define    ui_dport    ui_u.uh_dport
  34. #define    ui_ulen        ui_u.uh_ulen
  35. #define    ui_sum        ui_u.uh_sum
  36.  
  37. struct    udpstat {
  38.     int    udps_hdrops;
  39.     int    udps_badsum;
  40.     int    udps_badlen;
  41. };
  42.  
  43. #define    UDP_TTL        30        /* deflt time to live for UDP packets */
  44.  
  45. #ifdef KERNEL
  46. struct    inpcb udb;
  47. struct    udpstat udpstat;
  48. #endif
  49.  
  50. #endif _UDP_VAR
  51.